home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue59 / Arch / Sample / UnitFormListCustomer.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  2000-05-29  |  705 b   |  33 lines

  1. unit UnitFormListCustomer;
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  7.   UnitFormListBase, ActnList, Menus, Buttons, ComCtrls, ToolWin, StdCtrls,
  8.   ExtCtrls, UnitFrameResultSetBase, UnitFrameResultSetCustomer, ImgList;
  9.  
  10. type
  11.   TFormListCustomer = class(TFormListBase)
  12.     FrameResultSetCustomer: TFrameResultSetCustomer;
  13.   private
  14.     { Private declarations }
  15.   protected
  16.     function GetFrameResultSet: TFrameResultSetBase; override;
  17.   public
  18.  
  19.   end;
  20.  
  21. implementation
  22.  
  23. {$R *.DFM}
  24.  
  25. { TFormListCustomer }
  26.  
  27. function TFormListCustomer.GetFrameResultSet: TFrameResultSetBase;
  28. begin
  29.   Result := FrameResultSetCustomer;
  30. end;
  31.  
  32. end.
  33.